func crypto/cipher.xorBytes

9 uses

	crypto/cipher (current package)
		cbc.go#L72: 		xorBytes(dst[:x.blockSize], src[:x.blockSize], iv)
		cbc.go#L143: 		xorBytes(dst[start:end], dst[start:end], src[prev:start])
		cbc.go#L152: 	xorBytes(dst[start:end], dst[start:end], x.iv)
		cfb.go#L40: 		n := xorBytes(dst, src, x.out[x.outUsed:])
		ctr.go#L86: 		n := xorBytes(dst, src, x.out[x.outUsed:])
		gcm.go#L383: 		xorBytes(out, in, mask[:])
		ofb.go#L69: 		n := xorBytes(dst, src, x.out[x.outUsed:])
		xor_amd64.go#L9: func xorBytes(dst, a, b []byte) int {
		xor_amd64.go#L23: 	xorBytes(dst, a, b)